Fix typo, where x value was assigned to both x and y.
authorRichard Hult <rhult@codefactory.se>
Fri, 22 Mar 2002 17:47:51 +0000 (17:47 +0000)
committerRichard Hult <rhult@src.gnome.org>
Fri, 22 Mar 2002 17:47:51 +0000 (17:47 +0000)
2002-03-22  Richard Hult  <rhult@codefactory.se>

* gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
value was assigned to both x and y.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/gdkevents.c

index 62ffc23f129aa4f485558724454c00da994181fe..b9bcaf8dcd0b21742a25e6b8c913f28633a9f4df 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-03-22  Richard Hult  <rhult@codefactory.se>
+
+       * gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
+       value was assigned to both x and y.
+
 Fri Mar 22 11:29:11 2002  Owen Taylor  <otaylor@redhat.com>
 
        Partial fix for problem where keypad keys acted
index 62ffc23f129aa4f485558724454c00da994181fe..b9bcaf8dcd0b21742a25e6b8c913f28633a9f4df 100644 (file)
@@ -1,3 +1,8 @@
+2002-03-22  Richard Hult  <rhult@codefactory.se>
+
+       * gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
+       value was assigned to both x and y.
+
 Fri Mar 22 11:29:11 2002  Owen Taylor  <otaylor@redhat.com>
 
        Partial fix for problem where keypad keys acted
index 62ffc23f129aa4f485558724454c00da994181fe..b9bcaf8dcd0b21742a25e6b8c913f28633a9f4df 100644 (file)
@@ -1,3 +1,8 @@
+2002-03-22  Richard Hult  <rhult@codefactory.se>
+
+       * gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
+       value was assigned to both x and y.
+
 Fri Mar 22 11:29:11 2002  Owen Taylor  <otaylor@redhat.com>
 
        Partial fix for problem where keypad keys acted
index 62ffc23f129aa4f485558724454c00da994181fe..b9bcaf8dcd0b21742a25e6b8c913f28633a9f4df 100644 (file)
@@ -1,3 +1,8 @@
+2002-03-22  Richard Hult  <rhult@codefactory.se>
+
+       * gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
+       value was assigned to both x and y.
+
 Fri Mar 22 11:29:11 2002  Owen Taylor  <otaylor@redhat.com>
 
        Partial fix for problem where keypad keys acted
index 62ffc23f129aa4f485558724454c00da994181fe..b9bcaf8dcd0b21742a25e6b8c913f28633a9f4df 100644 (file)
@@ -1,3 +1,8 @@
+2002-03-22  Richard Hult  <rhult@codefactory.se>
+
+       * gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
+       value was assigned to both x and y.
+
 Fri Mar 22 11:29:11 2002  Owen Taylor  <otaylor@redhat.com>
 
        Partial fix for problem where keypad keys acted
index 62ffc23f129aa4f485558724454c00da994181fe..b9bcaf8dcd0b21742a25e6b8c913f28633a9f4df 100644 (file)
@@ -1,3 +1,8 @@
+2002-03-22  Richard Hult  <rhult@codefactory.se>
+
+       * gdk/gdkevents.c (gdk_event_get_root_coords): Fix typo, where x
+       value was assigned to both x and y.
+
 Fri Mar 22 11:29:11 2002  Owen Taylor  <otaylor@redhat.com>
 
        Partial fix for problem where keypad keys acted
index 700ac797d25a2fb76dfb57f97bb911e6c43ee4cb..7e211789f3b5877632074eab3a0eefb4490d21cf 100644 (file)
@@ -661,7 +661,7 @@ gdk_event_get_root_coords (GdkEvent *event,
   if (x_root)
     *x_root = x;
   if (y_root)
-    *y_root = x;
+    *y_root = y;
 
   return fetched;
 }